8e8a1692d14151dde2f61ae5645e5e72781d96f5,ikasoa-rpc/src/com/ikamobile/ikasoa/rpc/client/IkasoaClientService.java,IkasoaClientService,get,#T1#,49

Before Change


			context.setServerPort(thriftClient.getServerPort());
			context.setServiceKey(serviceKey);
			context.setArgObject(arg);
			invocationHandler.before(context);
		}
		// �数转�
		if (protocolHandler == null) {

After Change


	public T2 get(T1 arg) throws Throwable {
		ClientInvocationContext context = null;
		if (invocationHandler != null) {
			context = new ClientInvocationContext();
			context.setServerHost(thriftClient.getServerHost());
			context.setServerPort(thriftClient.getServerPort());
			context.setServiceKey(serviceKey);
			context.setArgObject(arg);
			context = invocationHandler.before(context);
		}
		// �数转�
		if (protocolHandler == null) {